home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / BPS210.ZIP / LPCI.HLP < prev    next >
Text File  |  1991-07-25  |  4KB  |  111 lines

  1.              Learning Paradigms Command Interpreter
  2.                 
  3. Information for New Version of BPS System
  4.  
  5.    In this new version of BPS system, we added a stochastic learning method
  6. by taking a random weight changes with simulated annealing concept.  In order
  7. to keep the feature of previous version (for some reasons, mostly is to save 
  8. the time), we emulated the original programming style.  In addition, by adding 
  9. the command interprter to accept commands from console, it allows user more 
  10. freely to access the system.  For further implementation or mantainability, 
  11. data structure definition for random weights and external declarations are 
  12. put in learning.h header file.  For the extensibility of LPCI, we have 
  13. constructed an interface allows user software to migrate to future products 
  14. with minimal change.  For more details see the technical documentation.
  15.  
  16.      The Learning Paradigms Command Interpreter supports a command language 
  17. to control the execution of the specific network.  Each command will be 
  18. defined, syntaxed, and if needed a comment will be mentioned.  These commands
  19. will be entered only on the console.  Commands referring to the display or 
  20. execution directly will be noticed immediately on the screen wile other 
  21. commands may have no visual effect.  In addition, command may not be 
  22. abbreviated and may only be enter as lower case.
  23.  
  24.  
  25.             LPCI COMMAND LISTING
  26.             ++++++++++++++++++++
  27. !
  28.  
  29. Purpose    : Executes a host operating system command.
  30. Synopsis: ! command-string
  31. Remark  : The current command string specified is passed to the host operating
  32.        system for execution.
  33.  
  34. ANNEALING
  35.  
  36. Purpose    : Enables simulated annealing
  37. Synopsis: annealing
  38. Remarks : It is necessary to set schedule before executing this command.
  39.  
  40. BPS
  41.  
  42. Purpose    : Enables backpropagation model without simulated annealing
  43. Synopsis: bps
  44. Remarks : See previous version documentation.
  45.  
  46.  
  47. CLS
  48.  
  49. Purpose    : clear the entire screen.
  50. Synposis: cls
  51. Remarks    : This command is effectivly the same as 'cls' command in DOS 
  52.         environment.
  53.  
  54. EXIT
  55.  
  56. Purpose    : Exit current command level.
  57. Synopsis: exit
  58. Remarks    : The current command level is terminated.  If the current command 
  59.       level was receiving input from the operatore, then this command 
  60.       causes the workstation to terminate the LPCI.
  61. HELP
  62.  
  63. Purpose    : Display this help facility.
  64. Synopsis: help 
  65. Remarks : The HELP command invokes the LPCI HELP facility to display 
  66.       information about LPCI commands or LPCI itself.  
  67.  
  68. MENU
  69.  
  70. Purpose    : Enables the menu-driven processor.
  71. Synposis: menu
  72. Remarks    : The function of menu-driven processor only involve some commands 
  73.       provided by LPCI.  
  74.  
  75. SHOW ANNEALINGW 
  76.    
  77. Purpose : Displays the current random weights in annealing schedule.
  78. Synopsis: show annealingw 
  79. Remarks : The annealing weights displayed is recently defined by annealing 
  80.       schedule.
  81.  
  82. SET TRACE
  83.  
  84. Purpose : Sets the recording of trace data on or off.
  85. Synposis: set trace <on|off>
  86. Remarks : The trace data file contains the entire commands indicated by the
  87.       user.
  88.  
  89.  
  90. SET LOG
  91.  
  92. Purpose : Enables or disables logging of the simulated annealing performance
  93.       to the specified file.
  94. Synopsis: set log [file_name]
  95. Remarks : The neural network weights and thresholds will be written to the 
  96.       specified file before annealing start.  The annealing random weight
  97.       changes defined by annealing schedule and the weights after annealing
  98.       proceed will also be recorded.  If file_name is not specified, "set
  99.       log" will close the logging file.  The logging file is automatically
  100.       closed when LPCI exits.
  101.  
  102.  
  103. SET SCHEDULE
  104.  
  105. Purpose    : Sets the annealing schedule
  106. Synopsis: set schedule epochs lower upper[;epochs lower upper]...
  107. Remarks : Example: set schedule 1000 -1 1;2000 -0.5 0.5
  108.           Enables annealing when the number of epochs reachs 1000,then applies
  109.       random weight changes with lower bound -1and upper bound 1.  The 
  110.       second schedule can be applied afterthe first schedule is done.
  111.